home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula 2
/
Nebula Two.iso
/
SourceCode
/
GameKit
/
Examples
/
NX_Invaders
/
NXIGameBrain.h
< prev
next >
Wrap
Text File
|
1995-06-12
|
576b
|
19 lines
// This handles a lot of the logic of the game; it has application delegate
// methods to deal with start up and shut down of the application. It also
// has some window delegate methods that work in conjunction with the game
// window (window with the playing field). It starts and stops the game,
// does pausing, makes sure initialization is done properly, moves from
// level to level, and tracks the score along with various bonuses.
#import <gamekit/gamekit.h> // superclass, etc.
@interface NXIGameBrain:GameBrain
{
}
- makeGameInfo;
- appDidInit:sender ;
@end